projects
/
cargo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
combined
(merge:
acabc59
c545221
)
auto merge of #136 : Tomaka17/cargo/multiple-build-cmds, r=alexcrichton
author
bors
<bors@rust-lang.org>
Mon, 7 Jul 2014 20:44:55 +0000
(20:44 +0000)
committer
bors
<bors@rust-lang.org>
Mon, 7 Jul 2014 20:44:55 +0000
(20:44 +0000)
Closes #69
Adds a new syntax for the `build = ` command:
```
build = [
["./configure"],
["make", "lib/libovr.a"],
["/bin/mkdir", "target"],
["/bin/cp", "lib/libovr.a", "target/"]
]
```
The current syntax `build = "make"` still works.
`build = [ "a", "b" ]` is forbidden because it is ambiguous.
Trivial merge